home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / tools4c.arc / PRINTDOC.BAT < prev    next >
DOS Batch File  |  1988-12-27  |  2KB  |  30 lines

  1. echo off
  2. cls
  3. echo ╔═════════════════════════════════════════════════════════════════════════════╗
  4. echo ║                                                                             ║
  5. echo ║                                                                             ║
  6. echo ║                                TOOLS FOR C                                  ║
  7. echo ║                       Application Development Package                       ║
  8. echo ║                                                                             ║
  9. echo ║                          Copyright (C) 1987 by                              ║
  10. echo ║                         BP Software Solutions, Inc.                         ║
  11. echo ║                                                                             ║
  12. echo ║      This batch file will print out the documentation for TOOLS FOR C.      ║
  13. echo ║                                                                             ║
  14. echo ║      These files will be typed to your PRN device.                          ║
  15. echo ║                                                                             ║
  16. echo ║      The files MANUAL.TXT, REFMAN.TXT, and MG.TXT must be in the            ║
  17. echo ║           current directory.                                                ║
  18. echo ║                                                                             ║
  19. echo ║           The documentation will consume approximately 60 pages.            ║
  20. echo ║           If your printer is not ready or if you do not have this           ║
  21. echo ║           much paper loaded or the text files are not where they            ║
  22. echo ║           should be, press Control C now to abort.                          ║
  23. echo ║                                                                             ║
  24. echo ╚═════════════════════════════════════════════════════════════════════════════╝
  25. pause
  26. type manual.txt >PRN
  27. type refman.txt >PRN
  28. type mg.txt >PRN
  29.  
  30.